home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Programming / RJTextEd.exe / {userappdata} / RJ TextEd / Templates / Cpp / main.cpp < prev   
Encoding:
C/C++ Source or Header  |  2006-08-30  |  154 b   |  11 lines

  1. // Simple c++ template with main function
  2. #include <iostream.h>
  3.  
  4. int main(void)    // The main function
  5. {
  6.    // Your code here
  7.  
  8.    return 0;
  9. }
  10.  
  11.